home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Disable ARP.xpl < prev    next >
Text File  |  2001-04-26  |  2KB  |  55 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="2"
  4. "UIPATH"="Network\TCP/IP
  5. "NAME"="ARP Packets"
  6. "OSVERSION"="0101011"
  7. "VERSION"="1.12"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Enable sending ARP packet"
  10. "TEXT 2"="Disable sending ARP packet" 
  11. "DESCRIPTION 1"="For WinNT4 (with SP5 or higher) and Win2000: On bootup, by default, the TCP/IP address is sent as a  gratuitous Address Resolution Protocol (ARP) packet to avoid duplicated addresses.."
  12. "DESCRIPTION 2"="Checking 1st Box [default] enables sending ARP Packet; Checking the 2nd Box will disable sending ARP Packet."
  13. "AUTHOR"="Ojatex@aol.com"
  14. "CONTACTURL"="http://members.aol.com/ojatex/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
  17. "COMMENT 2"="Thanks to CptSiskoX for the tip."
  18.  
  19. 'NT(2ver)=0(disable) 
  20. '2K(4ver)=1(disable) 
  21. 'default=3(enable)
  22.  
  23. sP="HKLM\System\CurrentControlSet\Services\TcpIp\Parameters\ArpRetryCount"
  24. Sub Plugin_Initialize 
  25.  i=RegReadValue(sP)
  26.  
  27.  if i=3 or IsEmpty(i) then 
  28.     SetUIElement 1,true
  29.  else
  30.     wv=GetWinVer
  31.     if wv=2 and i=0 then SetUIElement 2,true 'NT + 0 = disabled
  32.     if wv=4 and i=1 then SetUIElement 2,true '2K + 1 = disabled
  33.  end if
  34.  
  35. End Sub
  36.  
  37. Sub Plugin_CheckData(ElementIndex)
  38. End Sub
  39.  
  40. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  41.  b=GetUIElement(1)
  42.  if b=true then
  43.     Call RegWriteValue(sP,3,2)
  44.  else
  45.    wv=GetWinVer
  46.    if wv=2 then Call RegWriteValue(sP,0,2)
  47.    if wv=4 then Call RegWriteValue(sP,1,2)
  48.  end if
  49.  
  50. End Sub
  51.  
  52. Sub Plugin_Terminate 
  53. End Sub
  54.  
  55.